home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / wpalph.arc / READ.ME < prev    next >
Text File  |  1991-01-09  |  3KB  |  77 lines

  1. WPEdit is a programmer's text editor for Windows.  It's not as full-featured
  2. as Brief or QEdit, but it is quite easy to use (at least I think so!) and it
  3. has some nice features for programmers.
  4.  
  5. To install it, copy the files WPEDIT.EXE and WPEDIT.HLP to a directory on your
  6. hard disk, then use New Program Item in the Files menu of the Program Manager
  7. to install WPEdit in one of your program group windows.
  8.  
  9. When you start it, you will be staring at a "clean slate".  The editor works
  10. pretty much like other Windows editors, so if you have used any of them, you
  11. should be able to get up to speed with WPEdit pretty quickly.  The online
  12. help will give you info on the various keyboard and menu commands.
  13.  
  14. Important:  This is an "alpha test" version of WPEdit.  Although I have been
  15. using it for my own programming projects (including WPEdit itself) and it
  16. does not appear to have any serious bugs, it is not done!!
  17.  
  18. Features that I plan to add:
  19.  
  20. * Journal/Undo.
  21.  
  22. * Script capability, which includes keyboard remapping.
  23.  
  24. * Status window showing cursor position and currently enabled modes.
  25.  
  26. * Horizontal scrollbar.
  27.  
  28. * Whatever you suggest that is within the realm of my programming abilities!
  29.  
  30. Limitations and quirks that I am aware of:
  31.  
  32. * WPEdit can handle a maximum of 65535 lines.  (Guess what data type a line
  33.   number is!)
  34.  
  35. * Lines are limited to 1024 characters in length.  Right now, if you try to
  36.   do something to exceed that, like concatenate two lines that together are
  37.   longer than 1024 characters, the excess is simply chopped off.  I can make
  38.   this limit larger, say 2048 characters, but eliminating it would be a
  39.   major project.
  40.  
  41. * The total file size is limited to 2 Mbytes or the amount of available
  42.   memory, whichever is less.  But you don't want to load something TOO big,
  43.   because...
  44.  
  45. * File loading is somewhat slow.  On the 20 MHz 386 system that I use, it
  46.   takes about 7 seconds to load a 150K text file.  This is due to the com-
  47.   plexity of the data structures that I have to create, and of the heap
  48.   allocation scheme I use.  I am working to speed it up, but it's tough!
  49.   (After some further evaluation, I have found that it is the number of
  50.   lines in the file, not the total size, that determines how long it takes
  51.   to load.)
  52.  
  53. * Cutting, copying, and pasting are limited to 64K of text per operation.
  54.  
  55. * When text is deleted, tags contained within don't go away.
  56.  
  57. * Tags and the endpoints of the block mark move properly when whole lines are
  58.   deleted or moved, but not when pieces of lines containing tags or mark
  59.   endpoints are deleted/moved.  This is turning out to be a "toughie" to
  60.   solve.
  61.  
  62. * The Find Balancing Paranthesis function is not aware of comments and quoted
  63.   strings, so it will count parantheses inside them during its search.  I've
  64.   not found this to be a problem so far.
  65.  
  66. I am hoping to someday sell WPEdit as shareware.  Obviously it needs more
  67. work.  I basically want to know how you like WPEdit, how it can be improved,
  68. and most important, whether or not you think it shows any promise of being a
  69. good editor!!
  70.  
  71. You can write to me on GEnie (R.EPPS), CompuServe (72560,3353), BIX (repps),
  72. Prodigy (GPKT94A), Exec-BBS, or at this address:
  73.  
  74.              Robert Epps
  75.              208 Preble Drive #E
  76.              Tustin, CA  92680-3743
  77.